home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT2.SPK
/
test
/
test_b
/
c
/
release
< prev
next >
Wrap
Text File
|
1996-08-28
|
294b
|
27 lines
/*@only@*/ /*@null@*/ int *f(void)
{
int *x = NULL;
int *z;
if (3 > 4)
{
int *y1 = malloc (sizeof (int));
int *y2 = malloc (sizeof (int));
if (y1 != NULL)
{
*y1 = 3;
}
if (y2 != NULL)
{
*y2 = 3;
}
x = y1;
z = y2;
}
return x;
}